home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / win / pascal / notebox.exe / NOTEBOX.TXT < prev   
Encoding:
Text File  |  1991-12-16  |  669 b   |  36 lines

  1.  
  2.  
  3. This file contains the unit NOTEBOX.TPU which provides a
  4. NOTIFYBOX function which is similar to a messagebox although
  5. it will go away by itself after a predetermined time and does
  6. not require the user to press a button. This is useful to let
  7. the user know what is happening, esp. if things are moving
  8. slowly.
  9.  
  10. to use:
  11.  
  12.  
  13. Include NOTEBOX in your USES statement:
  14.  
  15. example:
  16.  
  17.     Uses wobjects,wintypes,winprocs,notebox;
  18.  
  19.  
  20. The function is as follows:
  21.  
  22. NOTIFYBOX(CaptionText,Text:pchar;Time:integer);
  23.  
  24.  
  25. CaptionText    Text of NotifyBox caption. '' for no text;
  26.  
  27. Text        NotifyBox Text
  28.  
  29. Time        Time in seconds to leave NotifyBox up
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36. Have FUN.